home *** CD-ROM | disk | FTP | other *** search
- /*
- A small DOpus5 module that moves the screen to the back if you are running
- Directory Opus 5 on its own screen.
-
- This *must* go in "DOpus5:Modules/" directory to work.
-
- $VER: Screen_Back.dopus5 1.0 (13.04.97)
-
- This is part of the freely distributable "Magnum Opus 2.0" © 1996-97 Richard Lane.
- */
-
- parse arg portname function source dest arguments
- address value portname
- options results
-
- if function = 'init' then do
- dopus command "Screen_Back" program "Screen-back" desc "'Moves DOpus5 screen to the back'"
- exit
- end
-
- if function='Screen_Back' then do
- address DOPUS.1
- DOPUS BACK
- exit
- end
-
- /* and that's it :-)*/
-
-